/* =============================================================
   Peanut 117 — chimney-exp_com — Homepage Styles
   All selectors prefixed: pnt118_cexp_
   ============================================================= */

/* --- Custom Properties --- */
.pnt118_cexp_urgency_bar,
.pnt118_cexp_hero,
.pnt118_cexp_trust,
.pnt118_cexp_services,
.pnt118_cexp_why,
.pnt118_cexp_process,
.pnt118_cexp_testimonials,
.pnt118_cexp_areas,
.pnt118_cexp_services_index,
.pnt118_cexp_cta_banner,
.pnt118_cexp_contact {
  --pnt117-cexp-primary: #c0390b;
  --pnt117-cexp-primary-dark: #a0300a;
  --pnt117-cexp-secondary: #1e2d40;
  --pnt117-cexp-accent: #e8b84b;
  --pnt117-cexp-light-bg: #f8f5f2;
  --pnt117-cexp-border: #e0d8d2;
  --pnt117-cexp-text: #2a2a2a;
  --pnt117-cexp-muted: #666;
  --pnt117-cexp-white: #ffffff;
  --pnt117-cexp-radius: 10px;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* --- Container --- */
.pnt118_cexp_container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.pnt118_cexp_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}

.pnt118_cexp_btn_lg {
  padding: 15px 30px;
  font-size: 17px;
}

.pnt118_cexp_btn_primary {
  background: var(--pnt117-cexp-primary);
  color: #fff;
  border-color: var(--pnt117-cexp-primary);
}

.pnt118_cexp_btn_primary:hover {
  background: var(--pnt117-cexp-primary-dark);
  border-color: var(--pnt117-cexp-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(192, 57, 11, 0.35);
}

.pnt118_cexp_btn_outline_white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.pnt118_cexp_btn_outline_white:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.pnt118_cexp_btn_white {
  background: #fff;
  color: var(--pnt117-cexp-primary);
  border-color: #fff;
}

.pnt118_cexp_btn_white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.pnt118_cexp_btn_full {
  width: 100%;
  justify-content: center;
}

.pnt118_cexp_btn_icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Section Heads --- */
.pnt118_cexp_section_head {
  text-align: center;
  margin-bottom: 52px;
}

.pnt118_cexp_section_label {
  display: inline-block;
  background: #fde9e3;
  color: var(--pnt117-cexp-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.pnt118_cexp_section_title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--pnt117-cexp-secondary);
  margin: 0 0 14px;
  line-height: 1.2;
}

.pnt118_cexp_section_title_left {
  text-align: left;
}

.pnt118_cexp_section_sub {
  font-size: 17px;
  color: var(--pnt117-cexp-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =============================================================
   URGENCY BAR
   ============================================================= */
.pnt118_cexp_urgency_bar {
  background: var(--pnt117-cexp-secondary);
  color: #fff;
  padding: 9px 0;
}

.pnt118_cexp_urgency_bar .pnt118_cexp_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pnt118_cexp_urgency_text {
  font-size: 13px;
  font-weight: 500;
}

.pnt118_cexp_urgency_link {
  font-size: 13px;
  font-weight: 700;
  color: var(--pnt117-cexp-accent);
  text-decoration: none;
  white-space: nowrap;
}

.pnt118_cexp_urgency_link:hover {
  text-decoration: underline;
}

/* =============================================================
   HERO
   ============================================================= */
/* =============================================================
   HERO — full-bleed video background, left-side content only
   ============================================================= */

.pnt118_cexp_hero {
  position: relative;
  /* fallback bg if video hasn't loaded yet */
  background: var(--pnt117-cexp-secondary);
  /* fixed height so the video has something to fill */
  height: 60vh;
  min-height: 380px;
  max-height: 580px;
  /* clip vertical video overflow */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-bleed video container — 100% wide, vertically centered, clips top/bottom */
.pnt118_cexp_hero_video_wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Video fills full width; height auto-scales; vertical centering via top/transform */
.pnt118_cexp_hero_video {
  display: block;
  /* always span the full viewport width — never letterbox left/right */
  width: 100%;
  /* let the browser compute height to preserve aspect ratio */
  height: auto;
  /* vertically center: move top edge to 50%, then shift up by half its own height */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* if screen is very wide and video height ends up less than container, cover it */
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
}

/* Dark gradient overlay — stronger at left (where text sits), lighter at right */
.pnt118_cexp_hero_bg_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(10, 16, 28, 0.82) 0%,
    rgba(10, 16, 28, 0.55) 45%,
    rgba(10, 16, 28, 0.15) 100%
  );
  pointer-events: none;
}

/* Content wrapper — sits above video + overlay */
.pnt118_cexp_hero_inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Left content block — max ~540px wide, doesn't span full grid */
.pnt118_cexp_hero_content {
  max-width: 540px;
}

.pnt118_cexp_hero_heading {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 22px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.pnt118_cexp_hero_accent {
  color: var(--pnt117-cexp-accent);
}

.pnt118_cexp_hero_sub {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 480px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.pnt118_cexp_hero_call_btn {
  font-size: 18px;
  padding: 16px 36px;
  box-shadow: 0 8px 32px rgba(192,57,11,0.45);
}

/* =============================================================
   TRUST STRIP
   ============================================================= */
.pnt118_cexp_trust {
  background: #fff;
  border-bottom: 1px solid var(--pnt117-cexp-border);
  padding: 28px 0;
}

.pnt118_cexp_trust_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.pnt118_cexp_trust_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 8px;
  border-right: 1px solid var(--pnt117-cexp-border);
}

.pnt118_cexp_trust_item:last-child {
  border-right: none;
}

.pnt118_cexp_trust_icon {
  font-size: 26px;
  line-height: 1;
}

.pnt118_cexp_trust_label {
  font-size: 12px;
  font-weight: 700;
  color: var(--pnt117-cexp-secondary);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =============================================================
   SERVICES
   ============================================================= */
.pnt118_cexp_services {
  background: #111820;
  padding: 80px 0;
}

.pnt118_cexp_services .pnt118_cexp_section_label {
  background: rgba(192,57,11,0.18);
  color: #e8895a;
}

.pnt118_cexp_services .pnt118_cexp_section_title {
  color: #ffffff;
}

.pnt118_cexp_services .pnt118_cexp_section_sub {
  color: rgba(255,255,255,0.55);
}

.pnt118_cexp_services_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pnt118_cexp_service_card {
  background: #1c2530;
  border-radius: var(--pnt117-cexp-radius);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pnt118_cexp_service_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(192,57,11,0.4);
}

.pnt118_cexp_service_icon_wrap {
  margin-bottom: 18px;
}

.pnt118_cexp_service_icon {
  width: 58px;
  height: 58px;
}

.pnt118_cexp_service_title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.pnt118_cexp_service_desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

.pnt118_cexp_service_link {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  padding: 13px 16px;
  background: #b72911;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background 0.18s, transform 0.15s;
}

.pnt118_cexp_service_link:hover {
  background: #921f0c;
  transform: translateY(-1px);
  text-decoration: none;
}

/* =============================================================
   WHY CHOOSE US
   ============================================================= */
.pnt118_cexp_why {
  background: #fff;
  padding: 80px 0;
}

.pnt118_cexp_why_inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.pnt118_cexp_why_intro {
  font-size: 17px;
  color: var(--pnt117-cexp-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

.pnt118_cexp_why_features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pnt118_cexp_why_feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pnt118_cexp_why_feature_icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pnt118_cexp_why_feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--pnt117-cexp-secondary);
  margin-bottom: 4px;
}

.pnt118_cexp_why_feature p {
  font-size: 14px;
  color: var(--pnt117-cexp-muted);
  margin: 0;
  line-height: 1.55;
}

/* --- Stats column --- */
.pnt118_cexp_why_stats_col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.pnt118_cexp_stat_box {
  background: var(--pnt117-cexp-secondary);
  border-radius: var(--pnt117-cexp-radius);
  padding: 24px 16px;
  text-align: center;
  color: #fff;
}

.pnt118_cexp_stat_num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--pnt117-cexp-accent);
}

.pnt118_cexp_stat_plus {
  font-size: 22px;
}

.pnt118_cexp_stat_star {
  font-size: 18px;
}

.pnt118_cexp_stat_label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

/* =============================================================
   PROCESS
   ============================================================= */
.pnt118_cexp_process {
  background: var(--pnt117-cexp-secondary);
  padding: 80px 0;
}

.pnt118_cexp_process .pnt118_cexp_section_head .pnt118_cexp_section_label {
  background: rgba(255,255,255,0.12);
  color: var(--pnt117-cexp-accent);
}

.pnt118_cexp_process .pnt118_cexp_section_title {
  color: #fff;
}

.pnt118_cexp_process .pnt118_cexp_section_sub {
  color: rgba(255,255,255,0.65);
}

.pnt118_cexp_process_steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}

.pnt118_cexp_process_step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--pnt117-cexp-radius);
  padding: 28px 22px;
}

.pnt118_cexp_step_num {
  font-size: 38px;
  font-weight: 900;
  color: var(--pnt117-cexp-accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 14px;
}

.pnt118_cexp_step_title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.pnt118_cexp_step_desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.pnt118_cexp_process_connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  color: rgba(255,255,255,0.3);
  font-size: 22px;
}

.pnt118_cexp_process_connector::after {
  content: '→';
}

.pnt118_cexp_process_cta {
  text-align: center;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.pnt118_cexp_testimonials {
  background: var(--pnt117-cexp-light-bg);
  padding: 80px 0;
}

.pnt118_cexp_rating_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.pnt118_cexp_stars {
  font-size: 20px;
  letter-spacing: 2px;
}

.pnt118_cexp_rating_text {
  font-size: 14px;
  color: var(--pnt117-cexp-muted);
  font-weight: 600;
}

.pnt118_cexp_reviews_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pnt118_cexp_review_card {
  background: #fff;
  border-radius: var(--pnt117-cexp-radius);
  padding: 28px 24px;
  border: 1px solid var(--pnt117-cexp-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pnt118_cexp_review_stars {
  font-size: 16px;
  letter-spacing: 2px;
}

.pnt118_cexp_review_text {
  font-size: 15px;
  color: var(--pnt117-cexp-text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.pnt118_cexp_reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pnt118_cexp_reviewer_avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pnt117-cexp-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.pnt118_cexp_reviewer strong {
  display: block;
  font-size: 14px;
  color: var(--pnt117-cexp-secondary);
}

.pnt118_cexp_reviewer_area {
  display: block;
  font-size: 12px;
  color: var(--pnt117-cexp-muted);
}

/* =============================================================
   AREAS SERVED
   ============================================================= */
.pnt118_cexp_areas {
  background: #fff;
  padding: 72px 0;
}

.pnt118_cexp_areas_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.pnt118_cexp_area_item {
  display: block;
  background: var(--pnt117-cexp-light-bg);
  border: 1px solid var(--pnt117-cexp-border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pnt117-cexp-secondary);
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.pnt118_cexp_area_item:hover {
  background: #fff;
  border-color: var(--pnt117-cexp-primary);
  color: var(--pnt117-cexp-primary);
  box-shadow: 0 2px 10px rgba(192,57,11,0.12);
}

.pnt118_cexp_areas_note {
  text-align: center;
  font-size: 14px;
  color: var(--pnt117-cexp-muted);
  margin: 0;
}

.pnt118_cexp_inline_link {
  color: var(--pnt117-cexp-primary);
  text-decoration: none;
  font-weight: 600;
}

.pnt118_cexp_inline_link:hover {
  text-decoration: underline;
}

/* =============================================================
   CTA BANNER
   ============================================================= */
/* =============================================================
   SERVICES INDEX
   ============================================================= */

.pnt118_cexp_services_index {
  background: #111820;
  padding: 72px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pnt118_cexp_services_index .pnt118_cexp_section_label {
  background: rgba(192,57,11,0.18);
  color: #e8895a;
}

.pnt118_cexp_services_index .pnt118_cexp_section_title {
  color: #ffffff;
}

.pnt118_cexp_services_index .pnt118_cexp_section_sub {
  color: rgba(255,255,255,0.55);
}

.pnt118_cexp_services_index_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pnt118_cexp_service_btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #1c2530;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #e8e8e8;
  text-decoration: none;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.pnt118_cexp_service_btn:hover {
  background: #b72911;
  border-color: #b72911;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(183,41,17,0.35);
}

/* =============================================================
   CTA BANNER
   ============================================================= */

.pnt118_cexp_cta_banner {
  background: var(--pnt117-cexp-primary);
  padding: 52px 0;
}

.pnt118_cexp_cta_banner_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pnt118_cexp_cta_banner_heading {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.pnt118_cexp_cta_banner_sub {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

/* =============================================================
   CONTACT
   ============================================================= */
.pnt118_cexp_contact {
  background: var(--pnt117-cexp-light-bg);
  padding: 80px 0;
}

.pnt118_cexp_contact_inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}

.pnt118_cexp_contact_desc {
  font-size: 16px;
  color: var(--pnt117-cexp-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

.pnt118_cexp_contact_details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pnt118_cexp_contact_detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pnt118_cexp_contact_icon {
  width: 20px;
  height: 20px;
  fill: var(--pnt117-cexp-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pnt118_cexp_contact_detail strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--pnt117-cexp-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.pnt118_cexp_contact_detail span,
.pnt118_cexp_contact_detail a {
  font-size: 15px;
  color: var(--pnt117-cexp-muted);
  text-decoration: none;
}

.pnt118_cexp_contact_detail a:hover {
  color: var(--pnt117-cexp-primary);
}

/* --- Form --- */
.pnt118_cexp_form_wrap {
  position: sticky;
  top: 24px;
}

.pnt118_cexp_form_card {
  background: #fff;
  border-radius: var(--pnt117-cexp-radius);
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid var(--pnt117-cexp-border);
}

.pnt118_cexp_form_title {
  font-size: 20px;
  font-weight: 800;
  color: var(--pnt117-cexp-secondary);
  margin: 0 0 22px;
}

.pnt118_cexp_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pnt118_cexp_form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pnt118_cexp_field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pnt118_cexp_label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pnt117-cexp-secondary);
}

.pnt118_cexp_input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--pnt117-cexp-border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--pnt117-cexp-text);
  transition: border-color 0.2s;
  background: #fff;
  font-family: inherit;
}

.pnt118_cexp_input:focus {
  outline: none;
  border-color: var(--pnt117-cexp-primary);
}

.pnt118_cexp_select {
  appearance: none;
  cursor: pointer;
}

.pnt118_cexp_textarea {
  resize: vertical;
  min-height: 80px;
}

.pnt118_cexp_form_privacy {
  font-size: 12px;
  color: var(--pnt117-cexp-muted);
  text-align: center;
  margin: 4px 0 0;
}

/* --- Success State --- */
.pnt118_cexp_form_success {
  text-align: center;
  padding: 40px 20px;
}

.pnt118_cexp_success_icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.pnt118_cexp_success_title {
  font-size: 22px;
  font-weight: 800;
  color: var(--pnt117-cexp-secondary);
  margin: 0 0 12px;
}

.pnt118_cexp_success_msg {
  font-size: 15px;
  color: var(--pnt117-cexp-muted);
  line-height: 1.6;
  margin: 0;
}

/* Services grid responsive — dark mode layout */
@media (max-width: 1100px) {
  .pnt118_cexp_services_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .pnt118_cexp_services_grid {
    grid-template-columns: 1fr;
  }
}

/* Services index grid responsive */
@media (max-width: 1100px) {
  .pnt118_cexp_services_index_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .pnt118_cexp_services_index_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .pnt118_cexp_services_index_grid {
    grid-template-columns: 1fr;
  }
}
